home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / slack-docs / cnews / viamail2news < prev   
Text File  |  1995-07-27  |  801b  |  20 lines

  1. #!/bin/sh
  2. # /var/spool/news/out.going/demon/viamail2news: the demon "batch sender"
  3. # Copyright 1995 John A. Phillips - john@linux.demon.co.uk
  4. #
  5. # This is not a traditional news batch sender.  It expects the pipeline to 
  6. # send it a list of items in the newsbase (a file name and its size, one 
  7. # article per line), instead of a (possibly compressed) batch of the articles 
  8. # themselves.  This can be done by using the C News nocomp script both as the 
  9. # batch builder and the batch muncher in the batchparms file.  This script 
  10. # just mails each of the named articles individually to a mail2news gateway.
  11. #
  12. # =()<. ${NEWSCONFIG-@<NEWSCONFIG>@}>()=
  13. . ${NEWSCONFIG-/var/lib/news/bin/config}
  14.  
  15. while read article size
  16. do
  17.     /usr/lib/sendmail mail2news@news.demon.co.uk < ${NEWSARTS}/$article
  18. done
  19. exit 0
  20.